[SPARK-11612] [ML] Pipeline and PipelineModel persistence#9674
[SPARK-11612] [ML] Pipeline and PipelineModel persistence#9674jkbradley wants to merge 7 commits intoapache:masterfrom
Conversation
|
Test build #45764 has finished for PR 9674 at commit
|
3700091 to
caf57c2
Compare
|
test this please |
|
Test build #45897 has finished for PR 9674 at commit
|
|
test this please |
|
Test build #46012 has finished for PR 9674 at commit
|
There was a problem hiding this comment.
Should users be able to save an incomplete pipeline? For example, I could make a template pipeline, send it to other users, and they only need to fill in some required params like inputCol after they load it back.
|
One suggestion is to merge |
…ipelineModel, to clean up namespace
|
@mengxr Thanks for reviewing! I believe I addressed everything, except where I quibbled in responses above. |
|
LGTM pending Jenkins. |
|
Test build #46026 has finished for PR 9674 at commit
|
|
@mengxr Thank you for reviewing! Merging with master and branch-1.6 |
Pipeline and PipelineModel extend Readable and Writable. Persistence succeeds only when all stages are Writable. Note: This PR reinstates tests for other read/write functionality. It should probably not get merged until [https://issues.apache.org/jira/browse/SPARK-11672] gets fixed. CC: mengxr Author: Joseph K. Bradley <joseph@databricks.com> Closes #9674 from jkbradley/pipeline-io. (cherry picked from commit 1c5475f) Signed-off-by: Joseph K. Bradley <joseph@databricks.com>
Pipeline and PipelineModel extend Readable and Writable. Persistence succeeds only when all stages are Writable.
Note: This PR reinstates tests for other read/write functionality. It should probably not get merged until [https://issues.apache.org/jira/browse/SPARK-11672] gets fixed.
CC: @mengxr